
body {
    font-family: sans-serif;
    background: #e5ddd5;
    margin: 0;
}

.header {
    display: flex;
    align-items: center;
    background: #075e54;
    color: white;
    padding: 10px;
}

.profile-pic {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.header-text h3 {
    margin: 0;
    font-size: 16px;
}

.header-text p {
    margin: 0;
    font-size: 12px;
    color: #d1d1d1;
}

.chat-container {
    padding: 20px;
}

.message {
    max-width: 70%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 10px;
    position: relative;
}

.message.left {
    width: 400px;
    background: #f1f0f0;
    text-align: left;

}


.message.right {
    width: 400px;
    background: #dcf8c6;
    text-align: right;
    margin-left: auto;

}


.time {
    font-size: 10px;
    color: gray;
    display: block;
    margin-top: 5px;
    text-align: right;
}


.sticker {
    max-width: 260px;
    text-align: left;

}
